home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 101 / CD-ROM 101.iso / aplic / copywriter / CopyWriterSetup.exe / {app} / Tweaks.txt < prev    next >
Encoding:
Windows Registry Data  |  2003-08-24  |  3.4 KB  |  126 lines

  1. Windows Registry Editor Version 5.00
  2.  
  3.  
  4.  
  5. ; -----------------------------------------------------------------------------
  6. ; This file contains various registry tweak examples.
  7. ; Do only use if you know what you are doing. 
  8. ;
  9. ; Don't forget to replace the 'DRIVE:\\DIRECTORY\\' with 
  10. ; the correct location of your CopyWriter executable.
  11.  
  12.  
  13.  
  14. ; -----------------------------------------------------------------------------
  15. ; This code associate *.INI files to CopyWriter.
  16. ; The Explorer context menu will now show an Open menu item to open the 
  17. ; selected *.INI file    
  18.  
  19. [HKEY_CLASSES_ROOT\.ini]
  20. @="CopyWriter INI-File"
  21.  
  22. [HKEY_CLASSES_ROOT\CopyWriter INI-File]
  23. @="CopyWriter INI-File"
  24.  
  25. [HKEY_CLASSES_ROOT\CopyWriter INI-File\DefaultIcon]
  26. @="shell32.dll,-152"
  27.  
  28. [HKEY_CLASSES_ROOT\CopyWriter INI-File\Shell]
  29.  
  30. [HKEY_CLASSES_ROOT\CopyWriter INI-File\Shell\Open]
  31. @="&Open"
  32.  
  33. [HKEY_CLASSES_ROOT\CopyWriter INI-File\Shell\Open\Command]
  34. @="\"DRIVE:\\DIRECTORY\\CopyWriter.exe\" \"%1\""
  35.  
  36.  
  37.  
  38. ; -----------------------------------------------------------------------------
  39. ; This code create a CopyWriter INI-File in the Explorers File > New menu 
  40.  
  41. [HKEY_CLASSES_ROOT\.ini\ShellNew]
  42. "FileName"="CopyWriter INI-File"
  43.  
  44.  
  45.  
  46. ; -----------------------------------------------------------------------------
  47. ; This code will add an Print menu item to the Explorer context menu 
  48. ; for *.INI files. Requires CopyWriter Version 2.01 or higher.
  49.  
  50. [HKEY_CLASSES_ROOT\CopyWriter INI-File\Shell\Print]
  51. @="&Print"
  52.  
  53. [HKEY_CLASSES_ROOT\CopyWriter INI-File\Shell\print\Command]
  54. @="\"DRIVE:\\DIRECTORY\\CopyWriter.exe\" \"%1\" \"-p\""
  55.  
  56.  
  57.  
  58. ; -----------------------------------------------------------------------------
  59. ; This code will add custom file filters to CopyWriter's Open Dialog.
  60. ; Requires CopyWriter Version 2.01 or higher.
  61.  
  62. [HKEY_CURRENT_USER\Software\PageUp\CopyWriter 2.0\Miscellaneous]
  63. "Custom_FileFilters"="|HTML Files (*.html, *.htm)|*.html; *.htm|INI Files (*.ini)|*.ini"
  64.  
  65.  
  66.  
  67. ; -----------------------------------------------------------------------------
  68. ; This code will remove custom file filters from CopyWriter's Open Dialog.
  69. ; Requires CopyWriter Version 2.01 or higher.
  70. .
  71. [HKEY_CURRENT_USER\Software\PageUp\CopyWriter 2.0\Miscellaneous]
  72. "Custom_FileFilters"=-
  73.  
  74.  
  75.  
  76. ; -----------------------------------------------------------------------------
  77. ; This code will set CopyWriter as default source viewer for Internet Explorer.
  78.  
  79. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\View Source Editor]
  80.  
  81. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\View Source Editor\Editor Name]
  82. @="DRIVE:\\DIRECTORY\\CopyWriter.exe"
  83.  
  84.  
  85.  
  86. ; -----------------------------------------------------------------------------
  87. ; This code will add a 'Print with CopyWriter' menu item to the Explorer 
  88. ; context menu for all files (Like the 'Send to CopyWriter' menu item).
  89.  
  90. [HKEY_CLASSES_ROOT\*\Shell\Print with CopyWriter]
  91.  
  92. [HKEY_CLASSES_ROOT\*\Shell\Print with CopyWriter\Command]
  93. @="\"C:\\CopyWriter\\CopyWriter.exe\" \"%1\" \"-p\""
  94.  
  95. [HKEY_CLASSES_ROOT\*\Shell\Send to CopyWriter]
  96.  
  97. [HKEY_CLASSES_ROOT\*\Shell\Print with CopyWriter\Command]
  98. @="\"C:\\CopyWriter\\CopyWriter.exe\" \"%1\"
  99.  
  100.  
  101.  
  102. ; -----------------------------------------------------------------------------
  103. ; Use this code to remove the 'Print with CopyWriter' menu item.
  104.  
  105. [-HKEY_CLASSES_ROOT\*\Shell\Print with CopyWriter]
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.